home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / cool / cool.lha / ice / pisces / config / site.imk < prev    next >
Encoding:
Text File  |  1991-09-04  |  2.1 KB  |  58 lines

  1. /*****************************************************************************
  2. //
  3. // Copyright (C) 1991 Texas Instruments Incorporated.
  4. //
  5. // Permission is granted to any individual or institution to use, copy, modify,
  6. // and distribute this software, provided that this complete copyright and
  7. // permission notice is maintained, intact, in all copies and supporting
  8. // documentation.
  9. //
  10. // Texas Instruments Incorporated provides this software "as is" without
  11. // express or implied warranty.
  12. //
  13.  *****************************************************************************
  14.  *
  15.  *    Author: Martin Neath
  16.  *    Filename: site.imk
  17.  *    $Revision: $ $Date: $
  18.  *    Module: build/config
  19.  *    Purpose: PISCES project site configuration file
  20.  *      Abstract:
  21.  *        - The "project.imk" file contains default values for project
  22.  *          commands, variables, and pathnames. 
  23.  *
  24.  *        - The "site.imk" configuration file allows for customization
  25.  *          and specialization of items like system include directory
  26.  *
  27.  *         - Use ifndef so that servers can override you if necessary, ie.
  28.  *
  29.  *             #ifndef ABuildParameter
  30.  *             #define ABuildParameter myvalue
  31.  *             #endif
  32.  *
  33.  *      Related Files: project.imk, imake.imk, imake.rul
  34.  *
  35.  *    Creation Date: 05/13/90
  36.  *    Changed by\Date\Reason:
  37.  *
  38.  *****************************************************************************/
  39.  
  40.  
  41. /*###########################################################################*/
  42. /*#              Site defaults for system directory pathnames               #*/
  43. /*###########################################################################*/
  44.  
  45. #ifndef SysIncDir
  46. #define SysIncDir DirName($(PATHSEP)usr$(PATHSEP)include)
  47. #endif
  48. #ifndef CPlusSysIncDir
  49. #define CPlusSysIncDir DirName($(PATHSEP)usr$(PATHSEP)include$(PATHSEP)CC)
  50. #endif
  51.  
  52. /*###########################################################################*/
  53. /*#              Site defaults for system directory pathnames               #*/
  54. /*###########################################################################*/
  55.  
  56. CINCDIR=SysIncDir                 /* system C header files   */
  57. CPLUSINCDIR=CPlusSysIncDir        /* system C++ header files */
  58.